home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <!--AviSynth plugin description version 1.1--> <plugin name="RawSource"> <description /> <filters> <filter name="RawSource" category="Misc Plugins" helpfile="rawsource" type="clip"> <description>This filter loads raw video data. The framerate is fixed to 25fps, you can change it with AssumeFPS, if you need (e.g. for NTSC-material).</description> <colorspaces /> <parameters> <parameter name="filename" type="string" default="" max="0" min="0" step="0" optional="False" paramList="False"> <description>the raw file e.g. a YUV-file</description> <items /> </parameter> <parameter name="width" type="int" default="" max="0" min="0" step="0" optional="False" paramList="False"> <description>you must specify the image dimensions. width is max 2880</description> <items /> </parameter> <parameter name="height" type="int" default="" max="0" min="0" step="0" optional="False" paramList="False"> <description>you must specify the image dimensions. width is max 2880</description> <items /> </parameter> <parameter name="pixel_type" type="string" default="" max="0" min="0" step="0" optional="False" paramList="True"> <description>The type of the raw data. An appropriate mapping to AviSynth's internal data is done.</description> <items> <item>RGB</item> <item>RGBA</item> <item>BGR</item> <item>BGRA</item> <item>YUYV</item> <item>UYUV</item> <item>YV12</item> <item>I420</item> </items> </parameter> </parameters> </filter> </filters> </plugin>